home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / tree.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  61KB  |  2,260 lines

  1. /* Language-indepednent node constructors for parse phase of GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4.    $Id: tree.c,v 1.9 91/11/22 19:45:04 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file contains the low level primitives for operating on tree nodes,
  24.    including allocation, list operations, interning of identifiers,
  25.    construction of data type nodes and statement nodes,
  26.    and construction of type conversion nodes.  It also contains
  27.    tables index by tree code that describe how to take apart
  28.    nodes of that code.
  29.  
  30.    It is intended to be language-independent, but occasionally
  31.    calls language-dependent routines defined (for C) in typecheck.c.
  32.  
  33.    The low-level allocation routines oballoc and permalloc
  34.    are used also for allocating many other kinds of objects
  35.    by all passes of the compiler.  */
  36.  
  37. #include "config.h"
  38. #include <stdio.h>
  39. #include "tree.h"
  40. #include "obstack.h"
  41. #include "gvarargs.h"
  42. #include "flags.h"
  43.  
  44. #define obstack_chunk_alloc xmalloc
  45. #define obstack_chunk_free free
  46.  
  47. extern int xmalloc ();
  48. extern void free ();
  49.  
  50. #if defined( _MSDOS )
  51. void error ( char *, ... );
  52. void warning ( char * s, ... );
  53. #endif
  54.  
  55. /* Tree nodes of permanent duration are allocated in this obstack.
  56.    They are the identifier nodes, and everything outside of
  57.    the bodies and parameters of function definitions.  */
  58.  
  59. struct obstack permanent_obstack;
  60.  
  61. /* The initial RTL, and all ..._TYPE nodes, in a function
  62.    are allocated in this obstack.  Usually they are freed at the
  63.    end of the function, but if the function is inline they are saved.  */
  64.  
  65. struct obstack maybepermanent_obstack;
  66.  
  67. /* The contents of the current function definition are allocated
  68.    in this obstack, and all are freed at the end of the function.  */
  69.  
  70. struct obstack temporary_obstack;
  71.  
  72. /* The tree nodes of an expression are allocated
  73.    in this obstack, and all are freed at the end of the expression.  */
  74.  
  75. struct obstack momentary_obstack;
  76.  
  77. /* This points at either permanent_obstack or maybepermanent_obstack.  */
  78.  
  79. struct obstack *saveable_obstack;
  80.  
  81. /* This is same as saveable_obstack during parse and expansion phase;
  82.    it points to temporary_obstack during optimization.
  83.    This is the obstack to be used for creating rtl objects.  */
  84.  
  85. struct obstack *rtl_obstack;
  86.  
  87. /* This points at either permanent_obstack or temporary_obstack.  */
  88.  
  89. struct obstack *current_obstack;
  90.  
  91. /* This points at either permanent_obstack or temporary_obstack
  92.    or momentary_obstack.  */
  93.  
  94. struct obstack *expression_obstack;
  95.  
  96. /* Addresses of first objects in some obstacks.
  97.    This is for freeing their entire contents.  */
  98. char *maybepermanent_firstobj;
  99. char *temporary_firstobj;
  100. char *momentary_firstobj;
  101.  
  102. /* Nonzero means all ..._TYPE nodes should be allocated permanently.  */
  103.  
  104. int all_types_permanent;
  105.  
  106. /* Stack of places to restore the momentary obstack back to.  */
  107.    
  108. struct momentary_level
  109. {
  110.   /* Pointer back to previous such level.  */
  111.   struct momentary_level *prev;
  112.   /* First object allocated within this level.  */
  113.   char *base;
  114.   /* Value of expression_obstack saved at entry to this level.  */
  115.   struct obstack *obstack;
  116. };
  117.  
  118. struct momentary_level *momentary_stack;
  119.  
  120. /* Table indexed by tree code giving a string containing a character
  121.    classifying the tree code.  Possibilities are
  122.    t, d, s, c, r and e.  See tree.def for details.  */
  123.  
  124. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
  125.  
  126. char *tree_code_type[] = {
  127. #include "tree.def"
  128. };
  129. #undef DEFTREECODE
  130.  
  131. /* Table indexed by tree code giving number of expression
  132.    operands beyond the fixed part of the node structure.
  133.    Not used for types or decls.  */
  134.  
  135. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
  136.  
  137. int tree_code_length[] = {
  138. #include "tree.def"
  139. };
  140. #undef DEFTREECODE
  141.  
  142. /* Counter for assigning unique ids to all tree nodes.  */
  143.  
  144. int tree_node_counter = 0;
  145.  
  146. /* Hash table for uniquizing IDENTIFIER_NODEs by name.  */
  147.  
  148. #define MAX_HASH_TABLE 1009
  149. static tree hash_table[MAX_HASH_TABLE];    /* id hash buckets */
  150.  
  151. /* 0 while creating built-in identifiers.  */
  152. static int do_identifier_warnings;
  153.  
  154. /* Init data for node creation, at the beginning of compilation.  */
  155.  
  156. void
  157. init_tree ()
  158. {
  159.   obstack_init (&permanent_obstack);
  160.  
  161.   obstack_init (&temporary_obstack);
  162.   temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
  163.   obstack_init (&momentary_obstack);
  164.   momentary_firstobj = (char *) obstack_alloc (&momentary_obstack, 0);
  165.   obstack_init (&maybepermanent_obstack);
  166.   maybepermanent_firstobj
  167.     = (char *) obstack_alloc (&maybepermanent_obstack, 0);
  168.  
  169.   current_obstack = &permanent_obstack;
  170.   expression_obstack = &permanent_obstack;
  171.   rtl_obstack = saveable_obstack = &permanent_obstack;
  172.   tree_node_counter = 1;
  173.   bzero (hash_table, sizeof hash_table);
  174. }
  175.  
  176. /* Start allocating on the temporary (per function) obstack.
  177.    This is done in start_function before parsing the function body,
  178.    and before each initialization at top level, and to go back
  179.    to temporary allocation after doing end_temporary_allocation.  */
  180.  
  181. void
  182. temporary_allocation ()
  183. {
  184.   current_obstack = &temporary_obstack;
  185.   expression_obstack = &temporary_obstack;
  186.   rtl_obstack = saveable_obstack = &maybepermanent_obstack;
  187.   momentary_stack = 0;
  188. }
  189.  
  190. /* Start allocating on the permanent obstack but don't
  191.    free the temporary data.  After calling this, call
  192.    `permanent_allocation' to fully resume permanent allocation status.  */
  193.  
  194. void
  195. end_temporary_allocation ()
  196. {
  197.   current_obstack = &permanent_obstack;
  198.   expression_obstack = &permanent_obstack;
  199.   rtl_obstack = saveable_obstack = &permanent_obstack;
  200. }
  201.  
  202. /* Resume allocating on the temporary obstack, undoing
  203.    effects of `end_temporary_allocation'.  */
  204.  
  205. void
  206. resume_temporary_allocation ()
  207. {
  208.   current_obstack = &temporary_obstack;
  209.   expression_obstack = &temporary_obstack;
  210.   rtl_obstack = saveable_obstack = &maybepermanent_obstack;
  211. }
  212.  
  213. /* Nonzero if temporary allocation is currently in effect.
  214.    Zero if currently doing permanent allocation.  */
  215.  
  216. int
  217. allocation_temporary_p ()
  218. {
  219.   return current_obstack == &temporary_obstack;
  220. }
  221.  
  222. /* Go back to allocating on the permanent obstack
  223.    and free everything in the temporary obstack.
  224.    This is done in finish_function after fully compiling a function.  */
  225.  
  226. void
  227. permanent_allocation ()
  228. {
  229.   /* Free up previous temporary obstack data */
  230.   obstack_free (&temporary_obstack, temporary_firstobj);
  231.   obstack_free (&momentary_obstack, momentary_firstobj);
  232.   obstack_free (&maybepermanent_obstack, maybepermanent_firstobj);
  233.  
  234.   current_obstack = &permanent_obstack;
  235.   expression_obstack = &permanent_obstack;
  236.   rtl_obstack = saveable_obstack = &permanent_obstack;
  237. }
  238.  
  239. /* Save permanently everything on the maybepermanent_obstack.  */
  240.  
  241. void
  242. preserve_data ()
  243. {
  244.   maybepermanent_firstobj
  245.     = (char *) obstack_alloc (&maybepermanent_obstack, 0);
  246. }
  247.  
  248. /* Allocate SIZE bytes in the current obstack
  249.    and return a pointer to them.
  250.    In practice the current obstack is always the temporary one.  */
  251.  
  252. char *
  253. oballoc (size)
  254.      int size;
  255. {
  256.   return (char *) obstack_alloc (current_obstack, size);
  257. }
  258.  
  259. /* Free the object PTR in the current obstack
  260.    as well as everything allocated since PTR.
  261.    In practice the current obstack is always the temporary one.  */
  262.  
  263. void
  264. obfree (ptr)
  265.      char *ptr;
  266. {
  267.   obstack_free (current_obstack, ptr);
  268. }
  269.  
  270. /* Allocate SIZE bytes in the permanent obstack
  271.    and return a pointer to them.  */
  272.  
  273. char *
  274. permalloc (size)
  275.      long size;
  276. {
  277.   return (char *) obstack_alloc (&permanent_obstack, size);
  278. }
  279.  
  280. /* Allocate SIZE bytes in the saveable obstack
  281.    and return a pointer to them.  */
  282.  
  283. char *
  284. savealloc (size)
  285.      int size;
  286. {
  287.   return (char *) obstack_alloc (saveable_obstack, size);
  288. }
  289.  
  290. /* Start a level of momentary allocation.
  291.    In C, each compound statement has its own level
  292.    and that level is freed at the end of each statement.
  293.    All expression nodes are allocated in the momentary allocation level.  */
  294.  
  295. void
  296. push_momentary ()
  297. {
  298.   struct momentary_level *tem
  299.     = (struct momentary_level *) obstack_alloc (&momentary_obstack,
  300.                         sizeof (struct momentary_level));
  301.   tem->prev = momentary_stack;
  302.   tem->base = (char *) obstack_base (&momentary_obstack);
  303.   tem->obstack = expression_obstack;
  304.   momentary_stack = tem;
  305.   expression_obstack = &momentary_obstack;
  306. }
  307.  
  308. /* Free all the storage in the current momentary-allocation level.
  309.    In C, this happens at the end of each statement.  */
  310.  
  311. void
  312. clear_momentary ()
  313. {
  314.   obstack_free (&momentary_obstack, momentary_stack->base);
  315. }
  316.  
  317. /* Discard a level of momentary allocation.
  318.    In C, this happens at the end of each compound statement.
  319.    Restore the status of expression node allocation
  320.    that was in effect before this level was created.  */
  321.  
  322. void
  323. pop_momentary ()
  324. {
  325.   struct momentary_level *tem = momentary_stack;
  326.   momentary_stack = tem->prev;
  327.   obstack_free (&momentary_obstack, tem);
  328.   expression_obstack = tem->obstack;
  329. }
  330.  
  331. /* Call when starting to parse a declaration:
  332.    make expressions in the declaration last the length of the function.
  333.    Returns an argument that should be passed to resume_momentary later.  */
  334.  
  335. int
  336. suspend_momentary ()
  337. {
  338.   register int tem = expression_obstack == &momentary_obstack;
  339.   expression_obstack = saveable_obstack;
  340.   return tem;
  341. }
  342.  
  343. /* Call when finished parsing a declaration:
  344.    restore the treatment of node-allocation that was
  345.    in effect before the suspension.
  346.    YES should be the value previously returned by suspend_momentary.  */
  347.  
  348. void
  349. resume_momentary (yes)
  350.      int yes;
  351. {
  352.   if (yes)
  353.     expression_obstack = &momentary_obstack;
  354. }
  355.  
  356. /* Return a newly allocated node of code CODE.
  357.    Initialize the node's unique id and its TREE_PERMANENT flag.
  358.    For decl and type nodes, some other fields are initialized.
  359.    The rest of the node is initialized to zero.
  360.  
  361.    Achoo!  I got a code in the node.  */
  362.  
  363. tree
  364. make_node (code)
  365.      enum tree_code code;
  366. {
  367.   register tree t;
  368.   register int type = *tree_code_type[(int) code];
  369.   register int length;
  370.   register struct obstack *obstack = current_obstack;
  371.   register int i;
  372.  
  373.   switch (type)
  374.     {
  375.     case 'd':  /* A decl node */
  376.       length = sizeof (struct tree_decl);
  377.       /* All decls in an inline function need to be saved.  */
  378.       if (obstack != &permanent_obstack)
  379.     obstack = saveable_obstack;
  380.       /* PARM_DECLs always go on saveable_obstack, not permanent,
  381.      even though we may make them before the function turns
  382.      on temporary allocation.  */
  383.       else if (code == PARM_DECL)
  384.     obstack = &maybepermanent_obstack;
  385.       break;
  386.  
  387.     case 't':  /* a type node */
  388.       length = sizeof (struct tree_type);
  389.       /* All data types are put where we can preserve them if nec.  */
  390.       if (obstack != &permanent_obstack)
  391.     obstack = all_types_permanent ? &permanent_obstack : saveable_obstack;
  392.       break;
  393.  
  394.     case 's':  /* a stmt node */
  395.       length = sizeof (struct tree_common)
  396.     + 2 * sizeof (int)
  397.       + tree_code_length[(int) code] * sizeof (char *);
  398.       /* All stmts are put where we can preserve them if nec.  */
  399.       if (obstack != &permanent_obstack)
  400.     obstack = saveable_obstack;
  401.       break;
  402.  
  403.     case 'r':  /* a reference */
  404.     case 'e':  /* an expression */
  405.       obstack = expression_obstack;
  406.       length = sizeof (struct tree_exp)
  407.     + (tree_code_length[(int) code] - 1) * sizeof (char *);
  408.       break;
  409.  
  410.     case 'c':  /* a constant */
  411.       obstack = expression_obstack;
  412.       /* We can't use tree_code_length for this, since the number of words
  413.      is machine-dependent due to varying alignment of `double'.  */
  414.       if (code == REAL_CST)
  415.     {
  416.       length = sizeof (struct tree_real_cst);
  417.       break;
  418.     }
  419.  
  420.     case 'x':  /* something random, like an identifier.  */
  421.       length = sizeof (struct tree_common)
  422.     + tree_code_length[(int) code] * sizeof (char *);
  423.       /* Identifier nodes are always permanent since they are
  424.      unique in a compiler run.  */
  425.       if (code == IDENTIFIER_NODE) obstack = &permanent_obstack;
  426.     }
  427.  
  428.   t = (tree) obstack_alloc (obstack, length);
  429.  
  430.   TREE_UID (t) = tree_node_counter++;
  431.   TREE_TYPE (t) = 0;
  432.   TREE_CHAIN (t) = 0;
  433.   for (i = (length / sizeof (int)) - 1;
  434.        i >= sizeof (struct tree_common) / sizeof (int) - 1;
  435.        i--)
  436.     ((int *) t)[i] = 0;
  437.  
  438.   TREE_SET_CODE (t, code);
  439.   if (obstack == &permanent_obstack)
  440.     TREE_PERMANENT (t) = 1;
  441.  
  442.   if (type == 'd')
  443.     {
  444.       extern int lineno;
  445.  
  446.       DECL_ALIGN (t) = 1;
  447.       DECL_SIZE_UNIT (t) = 1;
  448.       DECL_VOFFSET_UNIT (t) = 1;
  449.       DECL_SOURCE_LINE (t) = lineno;
  450.       DECL_SOURCE_FILE (t) = input_filename;
  451.     }
  452.  
  453.   if (type == 't')
  454.     {
  455.       TYPE_ALIGN (t) = 1;
  456.       TYPE_SIZE_UNIT (t) = 1;
  457.       TYPE_MAIN_VARIANT (t) = t;
  458.     }
  459.  
  460.   if (type == 'c')
  461.     {
  462.       TREE_LITERAL (t) = 1;
  463.     }
  464.  
  465.   return t;
  466. }
  467.  
  468. /* Return a new node with the same contents as NODE
  469.    except that its TREE_CHAIN is zero and it has a fresh uid.  */
  470.  
  471. tree
  472. copy_node (node)
  473.      tree node;
  474. {
  475.   register tree t;
  476.   register enum tree_code code = TREE_CODE (node);
  477.   register int length;
  478.   register int i;
  479.  
  480.   switch (*tree_code_type[(int) code])
  481.     {
  482.     case 'd':  /* A decl node */
  483.       length = sizeof (struct tree_decl);
  484.       break;
  485.  
  486.     case 't':  /* a type node */
  487.       length = sizeof (struct tree_type);
  488.       break;
  489.  
  490.     case 's':
  491.       length = sizeof (struct tree_common)
  492.     + 2 * sizeof (int)
  493.       + tree_code_length[(int) code] * sizeof (char *);
  494.       break;
  495.  
  496.     case 'r':  /* a reference */
  497.     case 'e':  /* a expression */
  498.       length = sizeof (struct tree_exp)
  499.     + (tree_code_length[(int) code] - 1) * sizeof (char *);
  500.       break;
  501.  
  502.     case 'c':  /* a constant */
  503.       /* We can't use tree_code_length for this, since the number of words
  504.      is machine-dependent due to varying alignment of `double'.  */
  505.       if (code == REAL_CST)
  506.     {
  507.       length = sizeof (struct tree_real_cst);
  508.       break;
  509.     }
  510.  
  511.     case 'x':  /* something random, like an identifier.  */
  512.       length = sizeof (struct tree_common)
  513.     + tree_code_length[(int) code] * sizeof (char *);
  514.     }
  515.  
  516.   t = (tree) obstack_alloc (current_obstack, length);
  517.  
  518.   for (i = ((length + sizeof (int) - 1) / sizeof (int)) - 1;
  519.        i >= 0;
  520.        i--)
  521.     ((int *) t)[i] = ((int *) node)[i];
  522.  
  523.   TREE_UID (t) = tree_node_counter++;
  524.   TREE_CHAIN (t) = 0;
  525.  
  526.   TREE_PERMANENT (t) = (current_obstack == &permanent_obstack);
  527.  
  528.   return t;
  529. }
  530.  
  531. /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
  532.    For example, this can copy a list made of TREE_LIST nodes.  */
  533.  
  534. tree
  535. copy_list (list)
  536.      tree list;
  537. {
  538.   tree head;
  539.   register tree prev, next;
  540.  
  541.   if (list == 0)
  542.     return 0;
  543.  
  544.   head = prev = copy_node (list);
  545.   next = TREE_CHAIN (list);
  546.   while (next)
  547.     {
  548.       TREE_CHAIN (prev) = copy_node (next);
  549.       prev = TREE_CHAIN (prev);
  550.       next = TREE_CHAIN (next);
  551.     }
  552.   return head;
  553. }
  554.  
  555. #define HASHBITS 30
  556.  
  557. /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string).
  558.    If an identifier with that name has previously been referred to,
  559.    the same node is returned this time.  */
  560.  
  561. tree
  562. get_identifier (text)
  563.      register char *text;
  564. {
  565.   register int hi;
  566.   register int i;
  567.   register tree idp;
  568.   register int len, hash_len;
  569.  
  570.   /* Compute length of text in len.  */
  571.   for (len = 0; text[len]; len++);
  572.  
  573.   /* Decide how much of that length to hash on */
  574.   hash_len = len;
  575.   if (warn_id_clash && len > id_clash_len)
  576.     hash_len = id_clash_len;
  577.  
  578.   /* Compute hash code */
  579.   hi = hash_len;
  580.   for (i = 0; i < hash_len; i++)
  581.     hi = ((hi * 613) + (unsigned)(text[i]));
  582.  
  583.   hi &= (1 << HASHBITS) - 1;
  584.   hi %= MAX_HASH_TABLE;
  585.   
  586.   /* Search table for identifier */
  587.   for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
  588.     if (IDENTIFIER_LENGTH (idp) == len
  589.     && !strcmp (IDENTIFIER_POINTER (idp), text))
  590.       return idp;        /* <-- return if found */
  591.   
  592.   /* Not found; optionally warn about a similar identifier */
  593.   if (warn_id_clash && do_identifier_warnings && len > id_clash_len)
  594.     for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
  595.       if (!strncmp (IDENTIFIER_POINTER (idp), text, id_clash_len))
  596.     {
  597.       warning ("`%s' and `%s' identical in first n characters",
  598.            IDENTIFIER_POINTER (idp), text);
  599.       break;
  600.     }
  601.  
  602.   /* Not found, create one, add to chain */
  603.   idp = make_node (IDENTIFIER_NODE);
  604.   IDENTIFIER_LENGTH (idp) = len;
  605.  
  606.   IDENTIFIER_POINTER (idp) = obstack_copy0 (&permanent_obstack, text, len);
  607.  
  608.   TREE_CHAIN (idp) = hash_table[hi];
  609.   hash_table[hi] = idp;
  610.   return idp;            /* <-- return if created */
  611. }
  612.  
  613. /* Enable warnings on similar identifiers (if requested).
  614.    Done after the built-in identifiers are created.  */
  615.  
  616. void
  617. start_identifier_warnings ()
  618. {
  619.   do_identifier_warnings = 1;
  620. }
  621.  
  622. /* Record the size of an identifier node for the language in use.
  623.    This is called by the language-specific files.  */
  624.  
  625. void
  626. set_identifier_size (size)
  627.      int size;
  628. {
  629.   tree_code_length[(int) IDENTIFIER_NODE] = size;
  630. }
  631.  
  632. /* Return a newly constructed INTEGER_CST node whose constant value
  633.    is specified by the two ints LOW and HI.
  634.    The TREE_TYPE is set to `int'.  */
  635.  
  636. tree
  637. build_int_2 (low, hi)
  638.      int low, hi;
  639. {
  640.   register tree t = make_node (INTEGER_CST);
  641.   TREE_INT_CST_LOW (t) = low;
  642.   TREE_INT_CST_HIGH (t) = hi;
  643.   TREE_TYPE (t) = integer_type_node;
  644.   return t;
  645. }
  646.  
  647. /* Return a new REAL_CST node whose type is TYPE and value is D.  */
  648.  
  649. tree
  650. build_real (type, d)
  651.      tree type;
  652.      REAL_VALUE_TYPE d;
  653. {
  654.   tree v;
  655.  
  656.   /* Check for valid float value for this type on this target machine;
  657.      if not, can print error message and store a valid value in D.  */
  658. #ifdef CHECK_FLOAT_VALUE
  659.   CHECK_FLOAT_VALUE (TYPE_MODE (type), d);
  660. #endif
  661.  
  662.   v = make_node (REAL_CST);
  663.   TREE_TYPE (v) = type;
  664.   TREE_REAL_CST (v) = d;
  665.   return v;
  666. }
  667.  
  668. /* Return a new REAL_CST node whose type is TYPE
  669.    and whose value is the integer value of the INTEGER_CST node I.  */
  670.  
  671. #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
  672.  
  673. REAL_VALUE_TYPE
  674. real_value_from_int_cst (i)
  675.      tree i;
  676. {
  677.   REAL_VALUE_TYPE d;
  678. #ifdef REAL_ARITHMETIC
  679.   REAL_VALUE_FROM_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i));
  680. #else /* not REAL_ARITHMETIC */
  681.   if (TREE_INT_CST_HIGH (i) < 0)
  682.     {
  683.       d = (double) (~ TREE_INT_CST_HIGH (i));
  684.       d *= ((double) (1 << (HOST_BITS_PER_INT / 2))
  685.         * (double) (1 << (HOST_BITS_PER_INT / 2)));
  686.       d += (double) (unsigned) (~ TREE_INT_CST_LOW (i));
  687.       d = (- d - 1.0);
  688.     }
  689.   else
  690.     {
  691.       d = (double) TREE_INT_CST_HIGH (i);
  692.       d *= ((double) (1 << (HOST_BITS_PER_INT / 2))
  693.         * (double) (1 << (HOST_BITS_PER_INT / 2)));
  694.       d += (double) (unsigned) TREE_INT_CST_LOW (i);
  695.     }
  696. #endif /* not REAL_ARITHMETIC */
  697.   return d;
  698. }
  699.  
  700. /* This function can't be implemented if we can't do arithmetic
  701.    on the float representation.  */
  702.  
  703. tree
  704. build_real_from_int_cst (type, i)
  705.      tree type;
  706.      tree i;
  707. {
  708.   tree v;
  709.   REAL_VALUE_TYPE d;
  710.  
  711.   v = make_node (REAL_CST);
  712.   TREE_TYPE (v) = type;
  713.  
  714.   d = real_value_from_int_cst (i);
  715.   /* Check for valid float value for this type on this target machine;
  716.      if not, can print error message and store a valid value in D.  */
  717. #ifdef CHECK_FLOAT_VALUE
  718.   CHECK_FLOAT_VALUE (TYPE_MODE (type), d);
  719. #endif
  720.  
  721.   TREE_REAL_CST (v) = d;
  722.   return v;
  723. }
  724.  
  725. #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
  726.  
  727. /* Return a newly constructed STRING_CST node whose value is
  728.    the LEN characters at STR.
  729.    The TREE_TYPE is not initialized.  */
  730.  
  731. tree
  732. build_string (len, str)
  733.      int len;
  734.      char *str;
  735. {
  736.   register tree s = make_node (STRING_CST);
  737.   TREE_STRING_LENGTH (s) = len;
  738.   TREE_STRING_POINTER (s) = obstack_copy0 (saveable_obstack, str, len);
  739.   return s;
  740. }
  741.  
  742. /* Return a newly constructed COMPLEX_CST node whose value is
  743.    specified by the real and imaginary parts REAL and IMAG.
  744.    Both REAL and IMAG should be constant nodes.
  745.    The TREE_TYPE is not initialized.  */
  746.  
  747. tree
  748. build_complex (real, imag)
  749.      tree real, imag;
  750. {
  751.   register tree t = make_node (COMPLEX_CST);
  752.   TREE_REALPART (t) = real;
  753.   TREE_IMAGPART (t) = imag;
  754.   return t;
  755. }
  756.  
  757. /* Return 1 if EXPR is the integer constant zero.  */
  758.  
  759. int
  760. integer_zerop (expr)
  761.      tree expr;
  762. {
  763.   return (TREE_CODE (expr) == INTEGER_CST
  764.       && TREE_INT_CST_LOW (expr) == 0
  765.       && TREE_INT_CST_HIGH (expr) == 0);
  766. }
  767.  
  768. /* Return 1 if EXPR is the integer constant one.  */
  769.  
  770. int
  771. integer_onep (expr)
  772.      tree expr;
  773. {
  774.   return (TREE_CODE (expr) == INTEGER_CST
  775.       && TREE_INT_CST_LOW (expr) == 1
  776.       && TREE_INT_CST_HIGH (expr) == 0);
  777. }
  778.  
  779. /* Return 1 if EXPR is an integer containing all 1's
  780.    in as much precision as it contains.  */
  781.  
  782. int
  783. integer_all_onesp (expr)
  784.      tree expr;
  785. {
  786.   register int prec;
  787.   register int uns;
  788.  
  789.   if (TREE_CODE (expr) != INTEGER_CST)
  790.     return 0;
  791.  
  792.   uns = TREE_UNSIGNED (TREE_TYPE (expr));
  793.   if (!uns)
  794.     return TREE_INT_CST_LOW (expr) == -1 && TREE_INT_CST_HIGH (expr) == -1;
  795.  
  796.   prec = TYPE_PRECISION (TREE_TYPE (expr));
  797.   if (prec >= HOST_BITS_PER_INT)
  798.     return TREE_INT_CST_LOW (expr) == -1
  799.       && TREE_INT_CST_HIGH (expr) == (1 << (prec - HOST_BITS_PER_INT)) - 1;
  800.   else
  801.     return TREE_INT_CST_LOW (expr) == (1 << prec) - 1;
  802. }
  803.  
  804. /* Return the length of a chain of nodes chained through TREE_CHAIN.
  805.    We expect a null pointer to mark the end of the chain.
  806.    This is the Lisp primitive `length'.  */
  807.  
  808. int
  809. list_length (t)
  810.      tree t;
  811. {
  812.   register tree tail;
  813.   register int len = 0;
  814.  
  815.   for (tail = t; tail; tail = TREE_CHAIN (tail))
  816.     len++;
  817.  
  818.   return len;
  819. }
  820.  
  821. /* Concatenate two chains of nodes (chained through TREE_CHAIN)
  822.    by modifying the last node in chain 1 to point to chain 2.
  823.    This is the Lisp primitive `nconc'.  */
  824.  
  825. tree
  826. chainon (op1, op2)
  827.      tree op1, op2;
  828. {
  829.   tree t;
  830.  
  831.   if (op1)
  832.     {
  833.       for (t = op1; TREE_CHAIN (t); t = TREE_CHAIN (t))
  834.     if (t == op2) abort ();    /* Circularity being created */
  835.       TREE_CHAIN (t) = op2;
  836.       return op1;
  837.     }
  838.   else return op2;
  839. }
  840.  
  841. /* Return a newly created TREE_LIST node whose
  842.    purpose and value fields are PARM and VALUE.  */
  843.  
  844. tree
  845. build_tree_list (parm, value)
  846.      tree parm, value;
  847. {
  848.   register tree t = make_node (TREE_LIST);
  849.   TREE_PURPOSE (t) = parm;
  850.   TREE_VALUE (t) = value;
  851.   return t;
  852. }
  853.  
  854. /* Return a newly created TREE_LIST node whose
  855.    purpose and value fields are PARM and VALUE
  856.    and whose TREE_CHAIN is CHAIN.  */
  857.  
  858. tree
  859. tree_cons (purpose, value, chain)
  860.      tree purpose, value, chain;
  861. {
  862.   register tree node = make_node (TREE_LIST);
  863.   TREE_CHAIN (node) = chain;
  864.   TREE_PURPOSE (node) = purpose;
  865.   TREE_VALUE (node) = value;
  866.   return node;
  867. }
  868.  
  869. /* Same as `tree_cons' but make a permanent object.  */
  870.  
  871. tree
  872. perm_tree_cons (purpose, value, chain)
  873.      tree purpose, value, chain;
  874. {
  875.   register tree node;
  876.   register struct obstack *ambient_obstack = current_obstack;
  877.   current_obstack = &permanent_obstack;
  878.  
  879.   node = make_node (TREE_LIST);
  880.   TREE_CHAIN (node) = chain;
  881.   TREE_PURPOSE (node) = purpose;
  882.   TREE_VALUE (node) = value;
  883.  
  884.   current_obstack = ambient_obstack;
  885.   return node;
  886. }
  887.  
  888. /* Same as `tree_cons', but make this node temporary, regardless.  */
  889.  
  890. tree
  891. temp_tree_cons (purpose, value, chain)
  892.      tree purpose, value, chain;
  893. {
  894.   register tree node;
  895.   register struct obstack *ambient_obstack = current_obstack;
  896.   current_obstack = &temporary_obstack;
  897.  
  898.   node = make_node (TREE_LIST);
  899.   TREE_CHAIN (node) = chain;
  900.   TREE_PURPOSE (node) = purpose;
  901.   TREE_VALUE (node) = value;
  902.  
  903.   current_obstack = ambient_obstack;
  904.   return node;
  905. }
  906.  
  907. /* Same as `tree_cons', but save this node if the function's RTL is saved.  */
  908.  
  909. tree
  910. saveable_tree_cons (purpose, value, chain)
  911.      tree purpose, value, chain;
  912. {
  913.   register tree node;
  914.   register struct obstack *ambient_obstack = current_obstack;
  915.   current_obstack = saveable_obstack;
  916.  
  917.   node = make_node (TREE_LIST);
  918.   TREE_CHAIN (node) = chain;
  919.   TREE_PURPOSE (node) = purpose;
  920.   TREE_VALUE (node) = value;
  921.  
  922.   current_obstack = ambient_obstack;
  923.   return node;
  924. }
  925.  
  926. /* Return the last node in a chain of nodes (chained through TREE_CHAIN).  */
  927.  
  928. tree
  929. tree_last (chain)
  930.      register tree chain;
  931. {
  932.   register tree next;
  933.   if (chain)
  934.     while (next = TREE_CHAIN (chain))
  935.       chain = next;
  936.   return chain;
  937. }
  938.  
  939. /* Reverse the order of elements in the chain T,
  940.    and return the new head of the chain (old last element).  */
  941.  
  942. tree
  943. nreverse (t)
  944.      tree t;
  945. {
  946.   register tree prev = 0, decl, next;
  947.   for (decl = t; decl; decl = next)
  948.     {
  949.       next = TREE_CHAIN (decl);
  950.       TREE_CHAIN (decl) = prev;
  951.       prev = decl;
  952.     }
  953.   return prev;
  954. }
  955.  
  956. /* Return the size nominally occupied by an object of type TYPE
  957.    when it resides in memory.  The value is measured in units of bytes,
  958.    and its data type is that normally used for type sizes
  959.    (which is the first type created by make_signed_type or
  960.    make_unsigned_type).  */
  961.  
  962. tree
  963. size_in_bytes (type)
  964.      tree type;
  965. {
  966.   if (type == error_mark_node)
  967.     return integer_zero_node;
  968.   type = TYPE_MAIN_VARIANT (type);
  969.   if (TYPE_SIZE (type) == 0)
  970.     {
  971.       incomplete_type_error (0, type);
  972.       return integer_zero_node;
  973.     }
  974.   return convert_units (TYPE_SIZE (type), TYPE_SIZE_UNIT (type),
  975.             BITS_PER_UNIT);
  976. }
  977.  
  978. /* Return the size of TYPE (in bytes) as an integer,
  979.    or return -1 if the size can vary.  */
  980.  
  981. int
  982. int_size_in_bytes (type)
  983.      tree type;
  984. {
  985.   int size;
  986.   if (type == error_mark_node)
  987.     return 0;
  988.   type = TYPE_MAIN_VARIANT (type);
  989.   if (TYPE_SIZE (type) == 0)
  990.     return -1;
  991.   if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
  992.     return -1;
  993.   size = TREE_INT_CST_LOW (TYPE_SIZE (type)) * TYPE_SIZE_UNIT (type);
  994.   return (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
  995. }
  996.  
  997. /* Return, as an INTEGER_CST node, the number of elements for
  998.    TYPE (which is an ARRAY_TYPE).  */
  999.  
  1000. tree
  1001. array_type_nelts (type)
  1002.      tree type;
  1003. {
  1004.   tree index_type = TYPE_DOMAIN (type);
  1005.   return (tree_int_cst_equal (TYPE_MIN_VALUE (index_type), integer_zero_node)
  1006.       ? TYPE_MAX_VALUE (index_type)
  1007.       : fold (build (MINUS_EXPR, integer_type_node,
  1008.              TYPE_MAX_VALUE (index_type),
  1009.              TYPE_MIN_VALUE (index_type))));
  1010. }
  1011.  
  1012. /* Return nonzero if arg is static -- a reference to an object in
  1013.    static storage.  This is not the same as the C meaning of `static'.  */
  1014.  
  1015. int
  1016. staticp (arg)
  1017.      tree arg;
  1018. {
  1019.   register enum tree_code code = TREE_CODE (arg);
  1020.  
  1021.   if ((code == VAR_DECL || code == FUNCTION_DECL || code == CONSTRUCTOR)
  1022.       && (TREE_STATIC (arg) || TREE_EXTERNAL (arg)))
  1023.     return 1;
  1024.  
  1025.   if (code == STRING_CST)
  1026.     return 1;
  1027.  
  1028.   if (code == COMPONENT_REF)
  1029.     return (DECL_VOFFSET (TREE_OPERAND (arg, 1)) == 0
  1030.         && staticp (TREE_OPERAND (arg, 0)));
  1031.  
  1032.   if (code == INDIRECT_REF)
  1033.     return TREE_LITERAL (TREE_OPERAND (arg, 0));
  1034.  
  1035.   if (code == ARRAY_REF)
  1036.     {
  1037.       if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
  1038.       && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
  1039.     return staticp (TREE_OPERAND (arg, 0));
  1040.     }
  1041.  
  1042.   return 0;
  1043. }
  1044.  
  1045. /* Return nonzero if REF is an lvalue valid for this language.
  1046.    Lvalues can be assigned, unless they have TREE_READONLY.
  1047.    Lvalues can have their address taken, unless they have TREE_REGDECL.  */
  1048.  
  1049. int
  1050. lvalue_p (ref)
  1051.      tree ref;
  1052. {
  1053.   register enum tree_code code = TREE_CODE (ref);
  1054.  
  1055.   if (language_lvalue_valid (ref))
  1056.     switch (code)
  1057.       {
  1058.       case COMPONENT_REF:
  1059.     return lvalue_p (TREE_OPERAND (ref, 0));
  1060.  
  1061.       case STRING_CST:
  1062.     return 1;
  1063.  
  1064.       case INDIRECT_REF:
  1065.       case ARRAY_REF:
  1066.       case VAR_DECL:
  1067.       case PARM_DECL:
  1068.       case RESULT_DECL:
  1069.       case ERROR_MARK:
  1070.     if (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
  1071.         && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
  1072.       return 1;
  1073.     break;
  1074.  
  1075.       case NEW_EXPR:
  1076.     return 1;
  1077.  
  1078.       case CALL_EXPR:
  1079.     if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
  1080.       return 1;
  1081.       }
  1082.   return 0;
  1083. }
  1084.  
  1085. /* Return nonzero if REF is an lvalue valid for this language;
  1086.    otherwise, print an error message and return zero.  */
  1087.  
  1088. int
  1089. lvalue_or_else (ref, string)
  1090.      tree ref;
  1091.      char *string;
  1092. {
  1093.   int win = lvalue_p (ref);
  1094.   if (! win)
  1095.     error ("invalid lvalue in %s", string);
  1096.   return win;
  1097. }
  1098.  
  1099. /* This should be applied to any node which may be used in more than one place,
  1100.    but must be evaluated only once.  Normally, the code generator would
  1101.    reevaluate the node each time; this forces it to compute it once and save
  1102.    the result.  This is done by encapsulating the node in a SAVE_EXPR.  */
  1103.  
  1104. tree
  1105. save_expr (expr)
  1106.      tree expr;
  1107. {
  1108.   register tree t = fold (expr);
  1109.  
  1110.   /* If the tree evaluates to a constant, then we don't want to hide that
  1111.      fact (i.e. this allows further folding, and direct checks for constants).
  1112.      Since it is no problem to reevaluate literals, we just return the 
  1113.      literal node. */
  1114.  
  1115.   if (TREE_LITERAL (t) || TREE_READONLY (t) || TREE_CODE (t) == SAVE_EXPR)
  1116.     return t;
  1117.  
  1118.   return build (SAVE_EXPR, TREE_TYPE (expr), t, NULL);
  1119. }
  1120.  
  1121. /* Stabilize a reference so that we can use it any number of times
  1122.    without causing its operands to be evaluated more than once.
  1123.    Returns the stabilized reference.
  1124.  
  1125.    Also allows conversion expressions whose operands are references.
  1126.    Any other kind of expression is returned unchanged.  */
  1127.  
  1128. tree
  1129. stabilize_reference (ref)
  1130.      tree ref;
  1131. {
  1132.   register tree result;
  1133.   register enum tree_code code = TREE_CODE (ref);
  1134.  
  1135.   switch (code)
  1136.     {
  1137.     case VAR_DECL:
  1138.     case PARM_DECL:
  1139.     case RESULT_DECL:
  1140.       result = ref;
  1141.       break;
  1142.  
  1143.     case NOP_EXPR:
  1144.     case CONVERT_EXPR:
  1145.     case FLOAT_EXPR:
  1146.     case FIX_TRUNC_EXPR:
  1147.     case FIX_FLOOR_EXPR:
  1148.     case FIX_ROUND_EXPR:
  1149.     case FIX_CEIL_EXPR:
  1150.       result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
  1151.       break;
  1152.  
  1153.     case INDIRECT_REF:
  1154.       result = build_nt (INDIRECT_REF, save_expr (TREE_OPERAND (ref, 0)));
  1155.       break;
  1156.  
  1157.     case COMPONENT_REF:
  1158.       result = build_nt (COMPONENT_REF,
  1159.              stabilize_reference (TREE_OPERAND (ref, 0)),
  1160.              TREE_OPERAND (ref, 1));
  1161.       break;
  1162.  
  1163.     case ARRAY_REF:
  1164.       result = build_nt (ARRAY_REF, stabilize_reference (TREE_OPERAND (ref, 0)),
  1165.              save_expr (TREE_OPERAND (ref, 1)));
  1166.       break;
  1167.  
  1168.       /* If arg isn't a kind of lvalue we recognize, make no change.
  1169.      Caller should recognize the error for an invalid lvalue.  */
  1170.     default:
  1171.       return ref;
  1172.  
  1173.     case ERROR_MARK:
  1174.       return error_mark_node;
  1175.     }
  1176.  
  1177.   TREE_TYPE (result) = TREE_TYPE (ref);
  1178.   TREE_READONLY (result) = TREE_READONLY (ref);
  1179.   TREE_VOLATILE (result) = TREE_VOLATILE (ref);
  1180.   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
  1181.  
  1182.   return result;
  1183. }
  1184.  
  1185. /* Low-level constructors for expressions.  */
  1186.  
  1187. /* Build an expression of code CODE, data type TYPE,
  1188.    and operands as specified by the arguments ARG1 and following arguments.
  1189.    Expressions and reference nodes can be created this way.
  1190.    Constants, decls, types and misc nodes cannot be.  */
  1191.  
  1192. tree
  1193. #if defined( STDARGS_ARE_COOL )
  1194. build ( enum tree_code code, ... )
  1195. #else
  1196. build (va_alist)
  1197.      va_dcl
  1198. #endif
  1199. {
  1200.   /* register */ va_list p;
  1201. #if ! defined( STDARGS_ARE_COOL )
  1202.   enum tree_code code;
  1203. #endif
  1204.   register tree t;
  1205.   register int length;
  1206.   register int i;
  1207.  
  1208. #if defined( STDARGS_ARE_COOL )
  1209.   va_start (p, code);
  1210. #else
  1211.   va_start (p);
  1212. #endif
  1213.  
  1214. #if ! defined( STDARGS_ARE_COOL )
  1215.   code = va_arg (p, enum tree_code);
  1216. #endif
  1217.   t = make_node (code);
  1218.   length = tree_code_length[(int) code];
  1219.   TREE_TYPE (t) = va_arg (p, tree);
  1220.  
  1221.   if (length == 2)
  1222.     {
  1223.       /* This is equivalent to the loop below, but faster.  */
  1224.       register tree arg0 = va_arg (p, tree);
  1225.       register tree arg1 = va_arg (p, tree);
  1226.       TREE_OPERAND (t, 0) = arg0;
  1227.       TREE_OPERAND (t, 1) = arg1;
  1228.       TREE_VOLATILE (t)
  1229.     = (arg0 && TREE_VOLATILE (arg0)) || (arg1 && TREE_VOLATILE (arg1));
  1230.     }
  1231.   else
  1232.     {
  1233.       for (i = 0; i < length; i++)
  1234.     {
  1235.       register tree operand = va_arg (p, tree);
  1236.       TREE_OPERAND (t, i) = operand;
  1237.       if (operand && TREE_VOLATILE (operand))
  1238.         TREE_VOLATILE (t) = 1;
  1239.     }
  1240.     }
  1241.   va_end (p);
  1242.   return t;
  1243. }
  1244.  
  1245. /* Similar except don't specify the TREE_TYPE
  1246.    and leave the TREE_VOLATILE as 0.
  1247.    It is permissible for arguments to be null,
  1248.    or even garbage if their values do not matter.  */
  1249.  
  1250. tree
  1251. #if defined( STDARGS_ARE_COOL )
  1252. build_nt ( enum tree_code code, ... )
  1253. #else
  1254. build_nt (va_alist)
  1255.      va_dcl
  1256. #endif
  1257. {
  1258.   register va_list p;
  1259. #if ! defined( STDARGS_ARE_COOL )
  1260.   register enum tree_code code;
  1261. #endif
  1262.   register tree t;
  1263.   register int length;
  1264.   register int i;
  1265.  
  1266. #if defined( STDARGS_ARE_COOL )
  1267.   va_start (p, code);
  1268. #else
  1269.   va_start (p);
  1270. #endif
  1271.  
  1272. #if ! defined( STDARGS_ARE_COOL )
  1273.   code = va_arg (p, enum tree_code);
  1274. #endif
  1275.   t = make_node (code);
  1276.   length = tree_code_length[(int) code];
  1277.  
  1278.   for (i = 0; i < length; i++)
  1279.     TREE_OPERAND (t, i) = va_arg (p, tree);
  1280.  
  1281.   va_end (p);
  1282.   return t;
  1283. }
  1284.  
  1285. tree
  1286. build_op_identifier (op1, op2)
  1287.      tree op1, op2;
  1288. {
  1289.   register tree t = make_node (OP_IDENTIFIER);
  1290.   TREE_PURPOSE (t) = op1;
  1291.   TREE_VALUE (t) = op2;
  1292.   return t;
  1293. }
  1294.  
  1295. /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
  1296.    We do NOT enter this node in any sort of symbol table.
  1297.  
  1298.    layout_decl is used to set up the decl's storage layout.
  1299.    Other slots are initialized to 0 or null pointers.  */
  1300.  
  1301. tree
  1302. build_decl (code, name, type)
  1303.      enum tree_code code;
  1304.      tree name, type;
  1305. {
  1306.   register tree t;
  1307.  
  1308.   t = make_node (code);
  1309.  
  1310. /*  if (type == error_mark_node)
  1311.     type = integer_type_node; */
  1312. /* That is not done, deliberately, so that having error_mark_node
  1313.    as the type can suppress useless errors in the use of this variable.  */
  1314.  
  1315.   DECL_NAME (t) = name;
  1316.   if (name)
  1317.     {
  1318.       DECL_PRINT_NAME (t) = IDENTIFIER_POINTER (name);
  1319.       DECL_ASSEMBLER_NAME (t) = IDENTIFIER_POINTER (name);
  1320.     }
  1321.   TREE_TYPE (t) = type;
  1322.   DECL_ARGUMENTS (t) = NULL_TREE;
  1323.   DECL_INITIAL (t) = NULL_TREE;
  1324.  
  1325.   if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
  1326.     layout_decl (t, 0);
  1327.   else if (code == FUNCTION_DECL)
  1328.     DECL_MODE (t) = FUNCTION_MODE;
  1329.  
  1330.   return t;
  1331. }
  1332.  
  1333. #if 0
  1334. /* Low-level constructors for statements.
  1335.    These constructors all expect source file name and line number
  1336.    as arguments, as well as enough arguments to fill in the data
  1337.    in the statement node.  */
  1338.  
  1339. tree
  1340. build_goto (filename, line, label)
  1341.      char *filename;
  1342.      int line;
  1343.      tree label;
  1344. {
  1345.   register tree t = make_node (GOTO_STMT);
  1346.   STMT_SOURCE_FILE (t) = filename;
  1347.   STMT_SOURCE_LINE (t) = line;
  1348.   STMT_BODY (t) = label;
  1349.   return t;
  1350. }
  1351.  
  1352. tree
  1353. build_return (filename, line, arg)
  1354.      char *filename;
  1355.      int line;
  1356.      tree arg;
  1357. {
  1358.   register tree t = make_node (RETURN_STMT);
  1359.  
  1360.   STMT_SOURCE_FILE (t) = filename;
  1361.   STMT_SOURCE_LINE (t) = line;
  1362.   STMT_BODY (t) = arg;
  1363.   return t;
  1364. }
  1365.  
  1366. tree
  1367. build_expr_stmt (filename, line, expr)
  1368.      char *filename;
  1369.      int line;
  1370.      tree expr;
  1371. {
  1372.   register tree t = make_node (EXPR_STMT);
  1373.  
  1374.   STMT_SOURCE_FILE (t) = filename;
  1375.   STMT_SOURCE_LINE (t) = line;
  1376.   STMT_BODY (t) = expr;
  1377.   return t;
  1378. }
  1379.  
  1380. tree
  1381. build_if (filename, line, cond, thenclause, elseclause)
  1382.      char *filename;
  1383.      int line;
  1384.      tree cond, thenclause, elseclause;
  1385. {
  1386.   register tree t = make_node (IF_STMT);
  1387.  
  1388.   STMT_SOURCE_FILE (t) = filename;
  1389.   STMT_SOURCE_LINE (t) = line;
  1390.   STMT_COND (t) = cond;
  1391.   STMT_THEN (t) = thenclause;
  1392.   STMT_ELSE (t) = elseclause;
  1393.   return t;
  1394. }
  1395.  
  1396. tree
  1397. build_exit (filename, line, cond)
  1398.      char *filename;
  1399.      int line;
  1400.      tree cond;
  1401. {
  1402.   register tree t = make_node (EXIT_STMT);
  1403.   STMT_SOURCE_FILE (t) = filename;
  1404.   STMT_SOURCE_LINE (t) = line;
  1405.   STMT_BODY (t) = cond;
  1406.   return t;
  1407. }
  1408.  
  1409. tree
  1410. build_asm_stmt (filename, line, asmcode)
  1411.      char *filename;
  1412.      int line;
  1413.      tree asmcode;
  1414. {
  1415.   register tree t = make_node (ASM_STMT);
  1416.   STMT_SOURCE_FILE (t) = filename;
  1417.   STMT_SOURCE_LINE (t) = line;
  1418.   STMT_BODY (t) = asmcode;
  1419.   return t;
  1420. }
  1421.  
  1422. tree
  1423. build_case (filename, line, object, cases)
  1424.      char *filename;
  1425.      int line;
  1426.      tree object, cases;
  1427. {
  1428.   register tree t = make_node (CASE_STMT);
  1429.   STMT_SOURCE_FILE (t) = filename;
  1430.   STMT_SOURCE_LINE (t) = line;
  1431.   STMT_CASE_INDEX (t) = object;
  1432.   STMT_CASE_LIST (t) = cases;
  1433.   return t;
  1434. }
  1435.  
  1436. tree
  1437. build_loop (filename, line, body)
  1438.      char *filename;
  1439.      int line;
  1440.      tree body;
  1441. {
  1442.   register tree t = make_node (LOOP_STMT);
  1443.   STMT_SOURCE_FILE (t) = filename;
  1444.   STMT_SOURCE_LINE (t) = line;
  1445.   STMT_BODY (t) = body;
  1446.   return t;
  1447. }
  1448.  
  1449. tree
  1450. build_compound (filename, line, body)
  1451.      char *filename;
  1452.      int line;
  1453.      tree body;
  1454. {
  1455.   register tree t = make_node (COMPOUND_STMT);
  1456.   STMT_SOURCE_FILE (t) = filename;
  1457.   STMT_SOURCE_LINE (t) = line;
  1458.   STMT_BODY (t) = body;
  1459.   return t;
  1460. }
  1461.  
  1462. #endif /* 0 */
  1463.  
  1464. /* LET_STMT nodes are used to represent the structure of binding contours
  1465.    and declarations, once those contours have been exited and their contents
  1466.    compiled.  This information is used for outputting debugging info.  */
  1467.  
  1468. tree
  1469. build_let (filename, line, vars, subblocks, supercontext, tags)
  1470.      char *filename;
  1471.      int line;
  1472.      tree vars, subblocks, supercontext, tags;
  1473. {
  1474.   register tree t = make_node (LET_STMT);
  1475.   STMT_SOURCE_FILE (t) = filename;
  1476.   STMT_SOURCE_LINE (t) = line;
  1477.   STMT_VARS (t) = vars;
  1478.   STMT_SUBBLOCKS (t) = subblocks;
  1479.   STMT_SUPERCONTEXT (t) = supercontext;
  1480.   STMT_BIND_SIZE (t) = 0;
  1481.   STMT_TYPE_TAGS (t) = tags;
  1482.   return t;
  1483. }
  1484.  
  1485. /* Return a type like TYPE except that its TREE_READONLY is CONSTP
  1486.    and its TREE_VOLATILE is VOLATILEP.
  1487.  
  1488.    Such variant types already made are recorded so that duplicates
  1489.    are not made.
  1490.  
  1491.    A variant types should never be used as the type of an expression.
  1492.    Always copy the variant information into the TREE_READONLY
  1493.    and TREE_VOLATILE of the expression, and then give the expression
  1494.    as its type the "main variant", the variant whose TREE_READONLY
  1495.    and TREE_VOLATILE are zero.  Use TYPE_MAIN_VARIANT to find the
  1496.    main variant.  */
  1497.  
  1498. tree
  1499. build_type_variant (type, constp, volatilep)
  1500.      tree type;
  1501.      int constp, volatilep;
  1502. {
  1503.   register tree t, m = TYPE_MAIN_VARIANT (type);
  1504.   register struct obstack *ambient_obstack = current_obstack;
  1505.  
  1506.   /* Treat any nonzero argument as 1.  */
  1507.   constp = !!constp;
  1508.   volatilep = !!volatilep;
  1509.  
  1510.   /* First search the chain variants for one that is what we want.  */
  1511.  
  1512.   for (t = m; t; t = TYPE_NEXT_VARIANT (t))
  1513.     if (constp == TREE_READONLY (t)
  1514.     && volatilep == TREE_VOLATILE (t))
  1515.       return t;
  1516.  
  1517.   /* We need a new one.  */
  1518.   current_obstack
  1519.     = TREE_PERMANENT (type) ? &permanent_obstack : saveable_obstack;
  1520.  
  1521.   t = copy_node (type);
  1522.   TREE_READONLY (t) = constp;
  1523.   TREE_VOLATILE (t) = volatilep;
  1524.   TYPE_POINTER_TO (t) = 0;
  1525.   TYPE_REFERENCE_TO (t) = 0;
  1526.  
  1527.   /* Add this type to the chain of variants of TYPE.  */
  1528.   TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  1529.   TYPE_NEXT_VARIANT (m) = t;
  1530.  
  1531.   current_obstack = ambient_obstack;
  1532.   return t;
  1533. }
  1534.  
  1535. /* Hashing of types so that we don't make duplicates.
  1536.    The entry point is `type_hash_canon'.  */
  1537.  
  1538. /* Each hash table slot is a bucket containing a chain
  1539.    of these structures.  */
  1540.  
  1541. struct type_hash
  1542. {
  1543.   struct type_hash *next;    /* Next structure in the bucket.  */
  1544.   int hashcode;            /* Hash code of this type.  */
  1545.   tree type;            /* The type recorded here.  */
  1546. };
  1547.  
  1548. /* Now here is the hash table.  When recording a type, it is added
  1549.    to the slot whose index is the hash code mod the table size.
  1550.    Note that the hash table is used for several kinds of types
  1551.    (function types, array types and array index range types, for now).
  1552.    While all these live in the same table, they are completely independent,
  1553.    and the hash code is computed differently for each of these.  */
  1554.  
  1555. #define TYPE_HASH_SIZE 59
  1556. struct type_hash *type_hash_table[TYPE_HASH_SIZE];
  1557.  
  1558. /* Here is how primitive or already-canonicalized types' hash
  1559.    codes are made.  */
  1560. #define TYPE_HASH(TYPE) TREE_UID (TYPE)
  1561.  
  1562. /* Compute a hash code for a list of types (chain of TREE_LIST nodes
  1563.    with types in the TREE_VALUE slots), by adding the hash codes
  1564.    of the individual types.  */
  1565.  
  1566. int
  1567. type_hash_list (list)
  1568.      tree list;
  1569. {
  1570.   register int hashcode;
  1571.   register tree tail;
  1572.   for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
  1573.     hashcode += TYPE_HASH (TREE_VALUE (tail));
  1574.   return hashcode;
  1575. }
  1576.  
  1577. /* Look in the type hash table for a type isomorphic to TYPE.
  1578.    If one is found, return it.  Otherwise return 0.  */
  1579.  
  1580. tree
  1581. type_hash_lookup (hashcode, type)
  1582.      int hashcode;
  1583.      tree type;
  1584. {
  1585.   register struct type_hash *h;
  1586.   for (h = type_hash_table[hashcode % TYPE_HASH_SIZE]; h; h = h->next)
  1587.     if (h->hashcode == hashcode
  1588.     && TREE_CODE (h->type) == TREE_CODE (type)
  1589.     && TREE_TYPE (h->type) == TREE_TYPE (type)
  1590.     && (TYPE_MAX_VALUE (h->type) == TYPE_MAX_VALUE (type)
  1591.         || tree_int_cst_equal (TYPE_MAX_VALUE (h->type),
  1592.                    TYPE_MAX_VALUE (type)))
  1593.     && (TYPE_MIN_VALUE (h->type) == TYPE_MIN_VALUE (type)
  1594.         || tree_int_cst_equal (TYPE_MIN_VALUE (h->type),
  1595.                    TYPE_MIN_VALUE (type)))
  1596.     && (TYPE_DOMAIN (h->type) == TYPE_DOMAIN (type)
  1597.         || (TREE_CODE (TYPE_DOMAIN (h->type)) == TREE_LIST
  1598.         && TREE_CODE (TYPE_DOMAIN (type)) == TREE_LIST
  1599.         && type_list_equal (TYPE_DOMAIN (h->type), TYPE_DOMAIN (type)))))
  1600.       return h->type;
  1601.   return 0;
  1602. }
  1603.  
  1604. /* Add an entry to the type-hash-table
  1605.    for a type TYPE whose hash code is HASHCODE.  */
  1606.  
  1607. void
  1608. type_hash_add (hashcode, type)
  1609.      int hashcode;
  1610.      tree type;
  1611. {
  1612.   register struct type_hash *h;
  1613.  
  1614.   h = (struct type_hash *) oballoc (sizeof (struct type_hash));
  1615.   h->hashcode = hashcode;
  1616.   h->type = type;
  1617.   h->next = type_hash_table[hashcode % TYPE_HASH_SIZE];
  1618.   type_hash_table[hashcode % TYPE_HASH_SIZE] = h;
  1619. }
  1620.  
  1621. /* Given TYPE, and HASHCODE its hash code, return the canonical
  1622.    object for an identical type if one already exists.
  1623.    Otherwise, return TYPE, and record it as the canonical object
  1624.    if it is a permanent object.
  1625.  
  1626.    To use this function, first create a type of the sort you want.
  1627.    Then compute its hash code from the fields of the type that
  1628.    make it different from other similar types.
  1629.    Then call this function and use the value.
  1630.    This function frees the type you pass in if it is a duplicate.  */
  1631.  
  1632. /* Set to 1 to debug without canonicalization.  Never set by program.  */
  1633. int debug_no_type_hash = 0;
  1634.  
  1635. tree
  1636. type_hash_canon (hashcode, type)
  1637.      int hashcode;
  1638.      tree type;
  1639. {
  1640.   tree t1;
  1641.  
  1642.   if (debug_no_type_hash)
  1643.     return type;
  1644.  
  1645.   t1 = type_hash_lookup (hashcode, type);
  1646.   if (t1 != 0)
  1647.     {
  1648.       struct obstack *o
  1649.     = TREE_PERMANENT (type) ? &permanent_obstack : saveable_obstack;
  1650.       obstack_free (o, type);
  1651.       return t1;
  1652.     }
  1653.  
  1654.   /* If this is a new type, record it for later reuse.  */
  1655.   if (current_obstack == &permanent_obstack)
  1656.     type_hash_add (hashcode, type);
  1657.  
  1658.   return type;
  1659. }
  1660.  
  1661. /* Given two lists of types
  1662.    (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
  1663.    return 1 if the lists contain the same types in the same order.
  1664.    Also, the TREE_PURPOSEs must match.  */
  1665.  
  1666. int
  1667. type_list_equal (l1, l2)
  1668.      tree l1, l2;
  1669. {
  1670.   register tree t1, t2;
  1671.   for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
  1672.     {
  1673.       if (TREE_VALUE (t1) != TREE_VALUE (t2))
  1674.     return 0;
  1675.       if (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
  1676.       && !simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
  1677.     return 0;
  1678.     }
  1679.  
  1680.   return t1 == t2;
  1681. }
  1682.  
  1683. /* Nonzero if integer constants T1 and T2
  1684.    represent the same constant value.  */
  1685.  
  1686. int
  1687. tree_int_cst_equal (t1, t2)
  1688.      tree t1, t2;
  1689. {
  1690.   if (t1 == t2)
  1691.     return 1;
  1692.   if (t1 == 0 || t2 == 0)
  1693.     return 0;
  1694.   if (TREE_CODE (t1) == INTEGER_CST
  1695.       && TREE_CODE (t2) == INTEGER_CST
  1696.       && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
  1697.       && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
  1698.     return 1;
  1699.   return 0;
  1700. }
  1701.  
  1702. /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
  1703.    The precise way of comparison depends on their data type.  */
  1704.  
  1705. int
  1706. tree_int_cst_lt (t1, t2)
  1707.      tree t1, t2;
  1708. {
  1709.   if (t1 == t2)
  1710.     return 0;
  1711.  
  1712.   if (!TREE_UNSIGNED (TREE_TYPE (t1)))
  1713.     return INT_CST_LT (t1, t2);
  1714.   return INT_CST_LT_UNSIGNED (t1, t2);
  1715. }
  1716.  
  1717. /* Compare two constructor-element-type constants.  */
  1718.  
  1719. int
  1720. simple_cst_equal (t1, t2)
  1721.      tree t1, t2;
  1722. {
  1723.   register enum tree_code code1, code2;
  1724.  
  1725.   if (t1 == t2)
  1726.     return 1;
  1727.   if (t1 == 0 || t2 == 0)
  1728.     return 0;
  1729.  
  1730.   code1 = TREE_CODE (t1);
  1731.   code2 = TREE_CODE (t2);
  1732.  
  1733.   if (code1 == NOP_EXPR || code1 == CONVERT_EXPR)
  1734.     if (code2 == NOP_EXPR || code2 == CONVERT_EXPR)
  1735.       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  1736.     else
  1737.       return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
  1738.   else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR)
  1739.     return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
  1740.  
  1741.   if (code1 != code2)
  1742.     return 0;
  1743.  
  1744.   switch (code1)
  1745.     {
  1746.     case INTEGER_CST:
  1747.       return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
  1748.     && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
  1749.  
  1750.     case REAL_CST:
  1751.       return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
  1752.  
  1753.     case STRING_CST:
  1754.       return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
  1755.     && !strcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2));
  1756.  
  1757.     case CONSTRUCTOR:
  1758.       abort ();
  1759.  
  1760.     case VAR_DECL:
  1761.     case PARM_DECL:
  1762.     case CONST_DECL:
  1763.       return 0;
  1764.  
  1765.     case PLUS_EXPR:
  1766.     case MINUS_EXPR:
  1767.     case MULT_EXPR:
  1768.     case TRUNC_DIV_EXPR:
  1769.     case TRUNC_MOD_EXPR:
  1770.     case LSHIFT_EXPR:
  1771.     case RSHIFT_EXPR:
  1772.       return (simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
  1773.           && simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
  1774.  
  1775.     case NEGATE_EXPR:
  1776.     case ADDR_EXPR:
  1777.     case REFERENCE_EXPR:
  1778.     case INDIRECT_REF:
  1779.       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  1780.  
  1781.     default:
  1782.       abort ();
  1783.     }
  1784. }
  1785.  
  1786. /* Constructors for pointer, array and function types.
  1787.    (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
  1788.    constructed by language-dependent code, not here.)  */
  1789.  
  1790. /* Construct, lay out and return the type of pointers to TO_TYPE.
  1791.    If such a type has already been constructed, reuse it.  */
  1792.  
  1793. tree
  1794. build_pointer_type (to_type)
  1795.      tree to_type;
  1796. {
  1797.   register tree t = TYPE_POINTER_TO (to_type);
  1798.   register struct obstack *ambient_obstack = current_obstack;
  1799.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  1800.  
  1801.   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
  1802.  
  1803.   if (t)
  1804.     return t;
  1805.  
  1806.   /* We need a new one.  If TO_TYPE is permanent, make this permanent too.  */
  1807.   if (TREE_PERMANENT (to_type))
  1808.     {
  1809.       current_obstack = &permanent_obstack;
  1810.       saveable_obstack = &permanent_obstack;
  1811.     }
  1812.  
  1813.   t = make_node (POINTER_TYPE);
  1814.   TREE_TYPE (t) = to_type;
  1815.  
  1816.   /* Record this type as the pointer to TO_TYPE.  */
  1817.   TYPE_POINTER_TO (to_type) = t;
  1818.  
  1819.   /* Lay out the type.  This function has many callers that are concerned
  1820.      with expression-construction, and this simplifies them all.
  1821.      Also, it guarantees the TYPE_SIZE is permanent if the type is.  */
  1822.   layout_type (t);
  1823.  
  1824.   current_obstack = ambient_obstack;
  1825.   saveable_obstack = ambient_saveable_obstack;
  1826.   return t;
  1827. }
  1828.  
  1829. /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
  1830.    MAXVAL should be the maximum value in the domain
  1831.    (one less than the length of the array).  */
  1832.  
  1833. tree
  1834. build_index_type (maxval)
  1835.      tree maxval;
  1836. {
  1837.   register tree itype = make_node (INTEGER_TYPE);
  1838.   int maxint = TREE_INT_CST_LOW (maxval);
  1839.   TYPE_PRECISION (itype) = BITS_PER_WORD;
  1840.   TYPE_MIN_VALUE (itype) = build_int_2 (0, 0);
  1841.   TREE_TYPE (TYPE_MIN_VALUE (itype)) = sizetype;
  1842.   TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
  1843.   TYPE_MODE (itype) = SImode;
  1844.   TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
  1845.   TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
  1846.   TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
  1847.   return type_hash_canon (maxint > 0 ? maxint : - maxint, itype);
  1848. }
  1849.  
  1850. /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
  1851.    and number of elements specified by the range of values of INDEX_TYPE.
  1852.    If such a type has already been constructed, reuse it.  */
  1853.  
  1854. tree
  1855. build_array_type (elt_type, index_type)
  1856.      tree elt_type, index_type;
  1857. {
  1858.   register tree t = make_node (ARRAY_TYPE);
  1859.   int hashcode;
  1860.  
  1861.   if (TREE_CODE (elt_type) == FUNCTION_TYPE)
  1862.     {
  1863.       error ("arrays of functions are not meaningful");
  1864.       elt_type = integer_type_node;
  1865.     }
  1866.  
  1867.   TREE_TYPE (t) = elt_type;
  1868.   TYPE_DOMAIN (t) = index_type;
  1869.  
  1870.   /* Make sure TYPE_POINTER_TO (elt_type) is filled in.  */
  1871.   build_pointer_type (elt_type);
  1872.  
  1873.   if (index_type == 0)
  1874.     return t;
  1875.  
  1876.   hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
  1877.   t = type_hash_canon (hashcode, t);
  1878.  
  1879.   if (TYPE_SIZE (t) == 0)
  1880.     layout_type (t);
  1881.   return t;
  1882. }
  1883.  
  1884. /* Construct, lay out and return
  1885.    the type of functions returning type VALUE_TYPE
  1886.    given arguments of types ARG_TYPES.
  1887.    ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
  1888.    are data type nodes for the arguments of the function.
  1889.    If such a type has already been constructed, reuse it.  */
  1890.  
  1891. tree
  1892. build_function_type (value_type, arg_types)
  1893.      tree value_type, arg_types;
  1894. {
  1895.   register tree t;
  1896.   int hashcode;
  1897.  
  1898.   if (TREE_CODE (value_type) == FUNCTION_TYPE
  1899.       || TREE_CODE (value_type) == ARRAY_TYPE)
  1900.     {
  1901.       error ("function return type cannot be function or array");
  1902.       value_type = integer_type_node;
  1903.     }
  1904.  
  1905.   /* Make a node of the sort we want.  */
  1906.   t = make_node (FUNCTION_TYPE);
  1907.   TREE_TYPE (t) = value_type;
  1908.   TYPE_ARG_TYPES (t) = arg_types;
  1909.  
  1910.   /* If we already have such a type, use the old one and free this one.  */
  1911.   hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
  1912.   t = type_hash_canon (hashcode, t);
  1913.  
  1914.   if (TYPE_SIZE (t) == 0)
  1915.     layout_type (t);
  1916.   return t;
  1917. }
  1918.  
  1919. /* Build the node for the type of references-to-TO_TYPE.  */
  1920.  
  1921. tree
  1922. build_reference_type (to_type)
  1923.      tree to_type;
  1924. {
  1925.   register tree t = TYPE_REFERENCE_TO (to_type);
  1926.   register struct obstack *ambient_obstack = current_obstack;
  1927.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  1928.  
  1929.   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
  1930.  
  1931.   if (t)
  1932.     return t;
  1933.  
  1934.   /* We need a new one.  If TO_TYPE is permanent, make this permanent too.  */
  1935.   if (TREE_PERMANENT (to_type))
  1936.     {
  1937.       current_obstack = &permanent_obstack;
  1938.       saveable_obstack = &permanent_obstack;
  1939.     }
  1940.  
  1941.   t = make_node (REFERENCE_TYPE);
  1942.   TREE_TYPE (t) = to_type;
  1943.  
  1944.   /* Record this type as the pointer to TO_TYPE.  */
  1945.   TYPE_REFERENCE_TO (to_type) = t;
  1946.  
  1947.   layout_type (t);
  1948.  
  1949.   current_obstack = ambient_obstack;
  1950.   saveable_obstack = ambient_saveable_obstack;
  1951.   return t;
  1952. }
  1953.  
  1954. /* Construct, lay out and return the type of methods belonging to class
  1955.    BASETYPE and whose arguments and values are described by TYPE.
  1956.    If that type exists already, reuse it.
  1957.    TYPE must be a FUNCTION_TYPE node.  */
  1958.  
  1959. tree
  1960. build_method_type (basetype, type)
  1961.      tree basetype, type;
  1962. {
  1963.   register tree t;
  1964.   int hashcode;
  1965.  
  1966.   /* Make a node of the sort we want.  */
  1967.   t = make_node (METHOD_TYPE);
  1968.  
  1969.   if (TREE_CODE (type) != FUNCTION_TYPE)
  1970.     abort ();
  1971.  
  1972.   TYPE_METHOD_BASETYPE (t) = basetype;
  1973.   TREE_TYPE (t) = TREE_TYPE (type);
  1974.  
  1975.   /* The actual arglist for this function includes a "hidden" argument
  1976.      which is "this".  Put it into the list of argument types.  */
  1977.  
  1978.   TYPE_ARG_TYPES (t)
  1979.     = tree_cons (NULL, build_pointer_type (basetype), TYPE_ARG_TYPES (type));
  1980.  
  1981.   /* If we already have such a type, use the old one and free this one.  */
  1982.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
  1983.   t = type_hash_canon (hashcode, t);
  1984.  
  1985.   if (TYPE_SIZE (t) == 0)
  1986.     layout_type (t);
  1987.  
  1988.   return t;
  1989. }
  1990.  
  1991. /* Construct, lay out and return the type of methods belonging to class
  1992.    BASETYPE and whose arguments and values are described by TYPE.
  1993.    If that type exists already, reuse it.
  1994.    TYPE must be a FUNCTION_TYPE node.  */
  1995.  
  1996. tree
  1997. build_offset_type (basetype, type)
  1998.      tree basetype, type;
  1999. {
  2000.   register tree t;
  2001.   int hashcode;
  2002.  
  2003.   /* Make a node of the sort we want.  */
  2004.   t = make_node (OFFSET_TYPE);
  2005.  
  2006.   TYPE_OFFSET_BASETYPE (t) = basetype;
  2007.   TREE_TYPE (t) = type;
  2008.  
  2009.   /* If we already have such a type, use the old one and free this one.  */
  2010.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
  2011.   t = type_hash_canon (hashcode, t);
  2012.  
  2013.   if (TYPE_SIZE (t) == 0)
  2014.     layout_type (t);
  2015.  
  2016.   return t;
  2017. }
  2018.  
  2019. /* Return OP, stripped of any conversions to wider types as much as is safe.
  2020.    Converting the value back to OP's type makes a value equivalent to OP.
  2021.  
  2022.    If FOR_TYPE is nonzero, we return a value which, if converted to
  2023.    type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
  2024.  
  2025.    If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
  2026.    narrowest type that can hold the value, even if they don't exactly fit.
  2027.    Otherwise, bit-field references are changed to a narrower type
  2028.    only if they can be fetched directly from memory in that type.
  2029.  
  2030.    OP must have integer, real or enumeral type.  Pointers are not allowed!
  2031.  
  2032.    There are some cases where the obvious value we could return
  2033.    would regenerate to OP if converted to OP's type, 
  2034.    but would not extend like OP to wider types.
  2035.    If FOR_TYPE indicates such extension is contemplated, we eschew such values.
  2036.    For example, if OP is (unsigned short)(signed char)-1,
  2037.    we avoid returning (signed char)-1 if FOR_TYPE is int,
  2038.    even though extending that to an unsigned short would regenerate OP,
  2039.    since the result of extending (signed char)-1 to (int)
  2040.    is different from (int) OP.  */
  2041.  
  2042. tree
  2043. get_unwidened (op, for_type)
  2044.      register tree op;
  2045.      tree for_type;
  2046. {
  2047.   /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension.  */
  2048.   /* TYPE_PRECISION is safe in place of type_precision since
  2049.      pointer types are not allowed.  */
  2050.   register tree type = TREE_TYPE (op);
  2051.   register int final_prec = TYPE_PRECISION (for_type != 0 ? for_type : type);
  2052.   register int uns
  2053.     = (for_type != 0 && for_type != type
  2054.        && final_prec > TYPE_PRECISION (type)
  2055.        && TREE_UNSIGNED (type));
  2056.   register tree win = op;
  2057.  
  2058.   while (TREE_CODE (op) == NOP_EXPR)
  2059.     {
  2060.       register int bitschange
  2061.     = TYPE_PRECISION (TREE_TYPE (op))
  2062.       - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
  2063.  
  2064.       /* Truncations are many-one so cannot be removed.
  2065.      Unless we are later going to truncate down even farther.  */
  2066.       if (bitschange < 0
  2067.       && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
  2068.     break;
  2069.  
  2070.       /* See what's inside this conversion.  If we decide to strip it,
  2071.      we will set WIN.  */
  2072.       op = TREE_OPERAND (op, 0);
  2073.  
  2074.       /* If we have not stripped any zero-extensions (uns is 0),
  2075.      we can strip any kind of extension.
  2076.      If we have previously stripped a zero-extension,
  2077.      only zero-extensions can safely be stripped.
  2078.      Any extension can be stripped if the bits it would produce
  2079.      are all going to be discarded later by truncating to FOR_TYPE.  */
  2080.  
  2081.       if (bitschange > 0)
  2082.     {
  2083.       if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
  2084.         win = op;
  2085.       /* TREE_UNSIGNED says whether this is a zero-extension.
  2086.          Let's avoid computing it if it does not affect WIN
  2087.          and if UNS will not be needed again.  */
  2088.       if ((uns || TREE_CODE (op) == NOP_EXPR)
  2089.           && TREE_UNSIGNED (TREE_TYPE (op)))
  2090.         {
  2091.           uns = 1;
  2092.           win = op;
  2093.         }
  2094.     }
  2095.     }
  2096.  
  2097.   if (TREE_CODE (op) == COMPONENT_REF
  2098.       /* Since type_for_size always gives an integer type.  */
  2099.       && TREE_CODE (type) != REAL_TYPE)
  2100.     {
  2101. #if defined( DSP56000 )
  2102.       /* the problem: under the L memory model, DECL_SIZE must be 1 for
  2103.      DImode, SFmode and DFmode vars, for addressing purposes. We want
  2104.      to avoid using DECL_SIZE or TYPE_SIZE for gauging precision. */
  2105.  
  2106.       int innerprec = (((( DImode == DECL_MODE ( TREE_OPERAND ( op, 1 ))) ||
  2107.              ( DFmode == DECL_MODE ( TREE_OPERAND ( op, 1 ))) ||
  2108.              ( SFmode == DECL_MODE ( TREE_OPERAND ( op, 1 )))) &&
  2109.             ( 'l' == memory_model )) ? 48 :
  2110.                ( TREE_INT_CST_LOW ( DECL_SIZE ( TREE_OPERAND ( op, 1)))
  2111.             * DECL_SIZE_UNIT ( TREE_OPERAND ( op, 1 ))));
  2112. #else
  2113.       int innerprec = (TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)))
  2114.                * DECL_SIZE_UNIT (TREE_OPERAND (op, 1)));
  2115. #endif
  2116.       type = type_for_size (innerprec, TREE_UNSIGNED (TREE_OPERAND (op, 1)));
  2117.  
  2118.       /* We can get this structure field in the narrowest type it fits in.
  2119.      If FOR_TYPE is 0, do this only for a field that matches the
  2120.      narrower type exactly and is aligned for it (i.e. mode isn't BI).
  2121.      The resulting extension to its nominal type (a fullword type)
  2122.      must fit the same conditions as for other extensions.  */
  2123.  
  2124.       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
  2125.       && (for_type || DECL_MODE (TREE_OPERAND (op, 1)) != BImode)
  2126.       && (! uns || final_prec <= innerprec
  2127.           || TREE_UNSIGNED (TREE_OPERAND (op, 1)))
  2128.       && type != 0)
  2129.     {
  2130.       win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
  2131.                TREE_OPERAND (op, 1));
  2132.       TREE_VOLATILE (win) = TREE_VOLATILE (op);
  2133.       TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
  2134.     }
  2135.     }
  2136.   return win;
  2137. }
  2138.  
  2139. /* Return OP or a simpler expression for a narrower value
  2140.    which can be sign-extended or zero-extended to give back OP.
  2141.    Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
  2142.    or 0 if the value should be sign-extended.  */
  2143.  
  2144. tree
  2145. get_narrower (op, unsignedp_ptr)
  2146.      register tree op;
  2147.      int *unsignedp_ptr;
  2148. {
  2149.   register int uns = 0;
  2150.   int first = 1;
  2151.   register tree win = op;
  2152.  
  2153.   while (TREE_CODE (op) == NOP_EXPR)
  2154.     {
  2155.       register int bitschange
  2156.     = TYPE_PRECISION (TREE_TYPE (op))
  2157.       - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
  2158.  
  2159.       /* Truncations are many-one so cannot be removed.  */
  2160.       if (bitschange < 0)
  2161.     break;
  2162.  
  2163.       /* See what's inside this conversion.  If we decide to strip it,
  2164.      we will set WIN.  */
  2165.       op = TREE_OPERAND (op, 0);
  2166.  
  2167.       if (bitschange > 0)
  2168.     {
  2169.       /* An extension: the outermost one can be stripped,
  2170.          but remember whether it is zero or sign extension.  */
  2171.       if (first)
  2172.         uns = TREE_UNSIGNED (TREE_TYPE (op));
  2173.       /* Otherwise, if a sign extension has been stripped,
  2174.          only sign extensions can now be stripped;
  2175.          if a zero extension has been stripped, only zero-extensions.  */
  2176.       else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
  2177.         break;
  2178.       first = 0;
  2179.     }
  2180.       /* A change in nominal type can always be stripped.  */
  2181.  
  2182.       win = op;
  2183.     }
  2184.  
  2185.   if (TREE_CODE (op) == COMPONENT_REF
  2186.       /* Since type_for_size always gives an integer type.  */
  2187.       && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE)
  2188.     {
  2189. #if defined( DSP56000 )
  2190.       /* the problem: under the L memory model, DECL_SIZE must be 1 for
  2191.      DImode, SFmode and DFmode vars, for addressing purposes. We want
  2192.      to avoid using DECL_SIZE or TYPE_SIZE for gauging precision. */
  2193.  
  2194.       int innerprec = (((( DImode == DECL_MODE ( TREE_OPERAND ( op, 1 ))) ||
  2195.              ( DFmode == DECL_MODE ( TREE_OPERAND ( op, 1 ))) ||
  2196.              ( SFmode == DECL_MODE ( TREE_OPERAND ( op, 1 )))) &&
  2197.             ( 'l' == memory_model )) ? 48 :
  2198.                ( TREE_INT_CST_LOW ( DECL_SIZE ( TREE_OPERAND ( op, 1)))
  2199.             * DECL_SIZE_UNIT ( TREE_OPERAND ( op, 1 ))));
  2200. #else
  2201.       int innerprec = (TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)))
  2202.                * DECL_SIZE_UNIT (TREE_OPERAND (op, 1)));
  2203. #endif
  2204.       tree type = type_for_size (innerprec, TREE_UNSIGNED (op));
  2205.  
  2206.       /* We can get this structure field in a narrower type that fits it,
  2207.      but the resulting extension to its nominal type (a fullword type)
  2208.      must satisfy the same conditions as for other extensions.
  2209.  
  2210.      Do this only for fields that are aligned (not BImode),
  2211.      because when bit-field insns will be used there is no
  2212.      advantage in doing this.  */
  2213.  
  2214.       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
  2215.       && DECL_MODE (TREE_OPERAND (op, 1)) != BImode
  2216.       && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
  2217.       && type != 0)
  2218.     {
  2219.       if (first)
  2220.         uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
  2221.       win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
  2222.                TREE_OPERAND (op, 1));
  2223.       TREE_VOLATILE (win) = TREE_VOLATILE (op);
  2224.       TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
  2225.     }
  2226.     }
  2227.   *unsignedp_ptr = uns;
  2228.   return win;
  2229. }
  2230.  
  2231. /* Return the precision of a type, for arithmetic purposes.
  2232.    Supports all types on which arithmetic is possible
  2233.    (including pointer types).
  2234.    It's not clear yet what will be right for complex types.  */
  2235.  
  2236. int
  2237. type_precision (type)
  2238.      register tree type;
  2239. {
  2240.   return ((TREE_CODE (type) == INTEGER_TYPE
  2241.        || TREE_CODE (type) == ENUMERAL_TYPE
  2242.        || TREE_CODE (type) == REAL_TYPE)
  2243.       ? TYPE_PRECISION (type) : POINTER_SIZE);
  2244. }
  2245.  
  2246. /* Nonzero if integer constant C has a value that is permissible
  2247.    for type TYPE (an INTEGER_TYPE).  */
  2248.  
  2249. int
  2250. int_fits_type_p (c, type)
  2251.      tree c, type;
  2252. {
  2253.   if (TREE_UNSIGNED (type))
  2254.     return (!INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type), c)
  2255.         && !INT_CST_LT_UNSIGNED (c, TYPE_MIN_VALUE (type)));
  2256.   else
  2257.     return (!INT_CST_LT (TYPE_MAX_VALUE (type), c)
  2258.         && !INT_CST_LT (c, TYPE_MIN_VALUE (type)));
  2259. }
  2260.